home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Disk / Directory / main.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-03  |  179 b   |  18 lines  |  [TEXT/KAHL]

  1. //-- MAIN.C
  2.  
  3. // The main entry point for all this.
  4.  
  5.  
  6. #include <stdio.h>
  7.  
  8.  
  9. main()
  10. {
  11.     int mode;
  12.  
  13.     InitMacintosh();
  14.     UnloadSeg(InitMacintosh);
  15.     while (!DoEvent());
  16.     ExitToShell();
  17. }
  18.